home *** CD-ROM | disk | FTP | other *** search
- {Conversion Programme -
-
- Designer: Craig Ward
- Date: 19/7/95
-
- Function: Converts values entered by user to format as specified
- by the user.
-
- ******************************************************************************}
- program Convert;
-
- uses
- Forms,
- Main in 'MAIN.PAS' {Form1},
- About in 'ABOUT.PAS' {AboutBox};
-
- {$R *.RES}
-
- begin
- Application.Title := 'Value Converter';
- Application.HelpFile := 'C:\WINDOWS\CONV.HLP';
- Application.CreateForm(TForm1, Form1);
- Application.CreateForm(TAboutBox, AboutBox);
- Application.Run;
- end.
-